a = 1
x = 2
b = 3
print(a)
if   x  > a  
  print(b)
elseif b > x
  print (x)
else
  c = a+b
  print(c)
end
